package alertmanager

import (
	
)

// ContactPointOption represents an option that can be used to configure a
// contact point.
type ContactPointOption func(contactPoint *Contact)

// Contact describes a contact point.
type Contact struct {
	Builder *sdk.ContactPoint
}

// ContactPoint defines a new contact point.
func ( string,  ...ContactPointOption) Contact {
	 := &Contact{
		Builder: &sdk.ContactPoint{
			Name: ,
		},
	}

	for ,  := range  {
		()
	}

	return *
}